PUT api/DataNodes/Command?ids[0]={ids[0]}&ids[1]={ids[1]}&cmd[0]={cmd[0]}&cmd[1]={cmd[1]}
Sends a custom command through to the input DataNodes
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| ids |
Array of DataNodeIntID to send commands to |
Collection of integer |
Required |
| cmd |
Array of commands to send to the DataNodes, respective to their indices |
Collection of string |
Required |
Body Parameters
None.
Response Information
Resource Description
GetDataNodeCommandResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| DataNodeCommandResponses |
Array of DataNode Command Responses |
Collection of DataNodeCommandResponse |
None. |
| Messages |
Array of messages |
Collection of Message |
None. |
| ServerInformation |
Relevant information regarding the Server |
ServerInformation |
None. |
| VersionInformation |
Relevant information regarding the API's version |
VersionInformation |
None. |
Response Formats
application/json, text/json, text/html
Sample:
{
"DataNodeCommandResponses": [
{
"DataNodeIntID": 1,
"ReturnCode": 2,
"CommandResponse": [
"sample string 1",
"sample string 2"
]
},
{
"DataNodeIntID": 1,
"ReturnCode": 2,
"CommandResponse": [
"sample string 1",
"sample string 2"
]
}
],
"Messages": [
{
"Severity": 0,
"MessageCode": 1,
"CodeDesc": 2,
"MessageText": "sample string 3",
"RecordNumber": 4
},
{
"Severity": 0,
"MessageCode": 1,
"CodeDesc": 2,
"MessageText": "sample string 3",
"RecordNumber": 4
}
],
"ServerInformation": {
"CurrentTimeUTC": "2025-11-09T21:34:45.8025709+10:00",
"BuildDateUTC": "2025-11-09T21:34:45.8025709+10:00"
},
"VersionInformation": {
"Major": 1,
"Minor": 8,
"Hotfix": 0,
"Beta": true,
"Version": "1.8.0.BETA"
}
}